/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #003366;
    color: white;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

/* Navegación */
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    display: block;
}

nav ul li a:hover {
    background-color: #005599;
    border-radius: 5px;
}

/* Submenús */
.submenu {
    position: relative;
}

.subitems {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #000;
    min-width: 180px;
    list-style: none;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 100;
}

.submenu:hover .subitems {
    display: block;
}

.subitems li a {
    color: #000;
    padding: 10px;
}

.subitems li a:hover {
    background-color: #eee;
}
.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #002147;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
  }
  
  input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  textarea {
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #004aad;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    transition: background-color 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #003580;
  }
  
  .social-links {
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
    gap: 20px;               /* Espacio entre imágenes */
    margin-top: 20px;
}

.social-links img {
    width: 70px;  /* Tamaño mediano */
    height: 50px; /* Ajusta la altura */
    object-fit: cover; /* Para que no se deformen */
    transition: transform 0.3s; /* Animación suave */
}

.social-links img:hover {
    transform: scale(1.1); /* Efecto agrandar un poco al pasar el mouse */
}
